home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / itgraph / msvc15 / itgdemo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-15  |  1.3 KB  |  52 lines

  1. // itgdemo.h : main header file for the ITGDEMO application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CItgDemoApp:
  12. // See itgdemo.cpp for the implementation of this class
  13. //
  14.  
  15. class CItgDemoApp : public CWinApp
  16. {
  17. public:
  18.     CItgDemoApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.     virtual CDocument *OpenDocumentFile(LPCSTR lpszFileName);
  23.  
  24. // Implementation
  25.  
  26.     //{{AFX_MSG(CItgDemoApp)
  27.     afx_msg void OnAppAbout();
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // VB-Event extern declarations
  34.  
  35. //{{AFX_VBX_REGISTER()
  36.     extern UINT NEAR VBN_KEYPRESS;
  37.     extern UINT NEAR VBN_ITEMCLICK;
  38.     extern UINT NEAR VBN_ITEMCONNECT;
  39.     extern UINT NEAR VBN_KEYDOWN;
  40.     extern UINT NEAR VBN_KEYUP;
  41.     extern UINT NEAR VBN_CLICK;
  42.     extern UINT NEAR VBN_SELECTRECT;
  43.     extern UINT NEAR VBN_ITEMDBLCLICK;
  44.     extern UINT NEAR VBN_DBLCLICK;
  45.     extern UINT NEAR VBN_ITEMMOUSEMOVE;
  46.     extern UINT NEAR VBN_MOUSEDOWN;
  47.     extern UINT NEAR VBN_MOUSEUP;
  48.     extern UINT NEAR VBN_LINEDBLCLICK;
  49. //}}AFX_VBX_REGISTER
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.